/* ========================================
   CSS ROOT VARIABLES
   ======================================== */
:root {
    /* Primary Colors */
    --color-primary-dark: #0d1418;
    --color-primary-medium: #1a2529;
    --color-primary-light: #27343a;

    /* Accent Colors */
    --color-accent-teal: #00d4aa;
    --color-accent-cyan: #00b8d4;
    --color-accent-orange: #ff6b35;

    /* Rating Colors */
    --color-rating-gold: #ffa726;
    --color-star: #ffa726;

    /* Text Colors */
    --color-text-primary: #ffffff;
    --color-text-secondary: #b8b8d1;
    --color-text-muted: #8e8ea0;

    /* Background Colors */
    --color-bg-dark: #0d1418;
    --color-bg-medium: #1a2529;
    --color-bg-card: #27343a;
    --color-bg-hover: #2d3d45;
    --color-bg-accent: rgba(0, 212, 170, 0.1);

    /* Border & Divider Colors */
    --color-border: rgba(255, 255, 255, 0.1);
    --color-divider: rgba(255, 255, 255, 0.05);

    /* Shadow */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.6);

    /* Glow Effects */
    --glow-teal: 0 0 30px rgba(0, 212, 170, 0.4);
    --glow-cyan: 0 0 30px rgba(0, 184, 212, 0.4);
    --glow-card: 0 4px 20px rgba(0, 212, 170, 0.2);
    --glow-header: 0 2px 16px rgba(0, 0, 0, 0.5);
    --glow-footer: 0 -2px 16px rgba(0, 0, 0, 0.5);

    /* Typography */
    --font-primary: 'Exo2', sans-serif;

    /* Font Sizes */
    --fs-xs: 0.75rem;
    /* 12px */
    --fs-sm: 0.875rem;
    /* 14px */
    --fs-base: 1rem;
    /* 16px */
    --fs-lg: 1.125rem;
    /* 18px */
    --fs-xl: 1.25rem;
    /* 20px */
    --fs-2xl: 1.5rem;
    /* 24px */
    --fs-3xl: 1.875rem;
    /* 30px */
    --fs-4xl: 2.25rem;
    /* 36px */
    --fs-5xl: 3rem;
    /* 48px */
    --fs-6xl: 3.75rem;
    /* 60px */

    /* Font Weights */
    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extrabold: 800;

    /* Spacing */
    --space-xs: 0.5rem;
    /* 8px */
    --space-sm: 1rem;
    /* 16px */
    --space-md: 1.5rem;
    /* 24px */
    --space-lg: 2rem;
    /* 32px */
    --space-xl: 3rem;
    /* 48px */
    --space-2xl: 4rem;
    /* 64px */
    --space-3xl: 6rem;
    /* 96px */

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-round: 50%;

    /* Container Widths */
    --container-xs: 640px;
    --container-sm: 768px;
    --container-md: 1024px;
    --container-lg: 1280px;
    --container-xl: 1440px;

    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 250ms ease-in-out;
    --transition-slow: 350ms ease-in-out;

    /* Z-index layers */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}


/* ========================================
   FONT FACES
   ======================================== */
@font-face {
    font-family: 'Exo2';
    src: url('../fonts/Exo2-VariableFont_wght.ttf') format('truetype-variations');
    font-weight: 100 900;
    font-display: swap;
}


/* ========================================
   CSS RESET & BASE STYLES
   ======================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: var(--fs-base);
    font-weight: var(--fw-regular);
    line-height: 1.6;
    color: var(--color-text-primary);
    background-color: var(--color-bg-dark);
    overflow-x: hidden;
}

/* Remove default list styles */
ul,
ol {
    list-style: none;
}

/* Remove default link styles */
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

/* Image defaults */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Form elements */
input,
button,
textarea,
select {
    font: inherit;
    color: inherit;
}

/* Button reset */
button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

/* Remove default button focus outline (we'll add custom one) */
button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--color-accent-teal);
    outline-offset: 2px;
}

/* Prevent text overflow */
h1,
h2,
h3,
h4,
h5,
h6,
p {
    overflow-wrap: break-word;
}


/* ========================================
   TYPOGRAPHY
   ======================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: var(--fw-bold);
    line-height: 1.2;
    color: var(--color-text-primary);
}

h1 {
    font-size: var(--fs-5xl);
    font-weight: var(--fw-extrabold);
}

h2 {
    font-size: var(--fs-4xl);
}

h3 {
    font-size: var(--fs-3xl);
}

h4 {
    font-size: var(--fs-2xl);
}

h5 {
    font-size: var(--fs-xl);
}

h6 {
    font-size: var(--fs-lg);
}

p {
    font-family: var(--font-primary);
    color: var(--color-text-secondary);
    line-height: 1.7;
}


/* ========================================
   CONTAINER SYSTEM
   ======================================== */
.container {
    width: 100%;
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container-sm {
    max-width: var(--container-sm);
}

.container-md {
    max-width: var(--container-md);
}

.container-lg {
    max-width: var(--container-lg);
}


/* ========================================
   SECTION SPACING
   ======================================== */
.section {
    padding: var(--space-3xl) 0;
}

.section-sm {
    padding: var(--space-2xl) 0;
}

.section-lg {
    padding: 120px 0;
}


/* ========================================
   UTILITY CLASSES
   ======================================== */

/* Text Alignment */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/* Text Colors */
.text-primary {
    color: var(--color-text-primary);
}

.text-secondary {
    color: var(--color-text-secondary);
}

.text-muted {
    color: var(--color-text-muted);
}

.text-accent {
    color: var(--color-accent-teal);
}

/* Display */
.d-block {
    display: block;
}

.d-inline-block {
    display: inline-block;
}

.d-flex {
    display: flex;
}

.d-grid {
    display: grid;
}

.d-none {
    display: none;
}

/* Flex utilities */
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-column {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-sm {
    gap: var(--space-sm);
}

.gap-md {
    gap: var(--space-md);
}

.gap-lg {
    gap: var(--space-lg);
}

/* Margins */
.mt-auto {
    margin-top: auto;
}

.mb-auto {
    margin-bottom: auto;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Positioning */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.sticky {
    position: sticky;
}


/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

/* Mobile First approach */

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 576px) {
    :root {
        --fs-5xl: 2rem;
        /* 32px */
        --fs-4xl: 1.75rem;
        /* 28px */
        --fs-3xl: 1.5rem;
        /* 24px */
    }

    .container {
        padding: 0 var(--space-sm);
    }

    .section {
        padding: var(--space-2xl) 0;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    h1 {
        font-size: var(--fs-6xl);
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .container {
        padding: 0 var(--space-xl);
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {}


/* ========================================
   CUSTOM SCROLLBAR
   ======================================== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--color-accent-teal);
    border-radius: var(--radius-md);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent-cyan);
}


/* ========================================
   SELECTION
   ======================================== */
::selection {
    background-color: var(--color-accent-teal);
    color: #ffffff;
}

::-moz-selection {
    background-color: var(--color-accent-teal);
    color: #ffffff;
}

/* ========================================
   HERO SECTION - РЕДИЗАЙН
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 212, 170, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 184, 212, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, #0d1418 0%, #1a2529 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(0, 212, 170, 0.03) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(0, 184, 212, 0.03) 50%, transparent 70%);
    background-size: 100px 100px;
    animation: gridMove 20s linear infinite;
    z-index: 0;
}

.hero__bg-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    object-fit: cover;
    opacity: 0.08;
    filter: blur(40px);
    z-index: 0;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero__content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
    position: relative;
    z-index: 2;
}

.hero__title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    margin-bottom: var(--space-lg);
    background: linear-gradient(135deg, #ffffff 0%, var(--color-accent-teal) 50%, var(--color-accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: heroTitleAnim 1s ease forwards;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.hero__subtitle {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--color-accent-teal);
    margin-bottom: var(--space-xl);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.3s;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero__text {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    max-width: 800px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.5s;
    font-weight: 400;
}

@keyframes heroTitleAnim {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes gridMove {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 100px 100px, -100px -100px;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
        min-height: 90vh;
    }

    .hero__content {
        padding: var(--space-xl) var(--space-md);
    }
}

/* ========================================
   OFFERS SECTION
   ======================================== */
.offers {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-medium);
}

.section__title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    margin-bottom: var(--space-3xl);
    color: var(--color-text-primary);
    font-family: var(--font-primary);
    font-weight: 800;
    position: relative;
    display: inline-block;
    width: 100%;
    letter-spacing: -0.02em;
}

.section__title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-accent-teal), transparent);
    border-radius: 2px;
}

.section__title::after {
    content: '';
    display: block;
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent-teal), var(--color-accent-cyan), var(--color-accent-orange));
    margin: var(--space-lg) auto 0;
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(0, 212, 170, 0.5);
}

.offers__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    padding: 0 var(--space-md);
}

.offer__card {
    background: linear-gradient(135deg, var(--color-bg-card) 0%, var(--color-bg-hover) 100%);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 212, 170, 0.2);
}

.offer__card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(0, 212, 170, 0.1), transparent 30%);
    animation: rotate 8s linear infinite;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.offer__card::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: var(--radius-2xl);
    background: linear-gradient(135deg, var(--color-bg-card), var(--color-bg-hover));
    z-index: -1;
}

.offer__card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 212, 170, 0.4), 0 0 40px rgba(0, 184, 212, 0.2);
    border-color: var(--color-accent-teal);
}

.offer__card:hover::before {
    opacity: 1;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

.offer__logo {
    width: 90px;
    height: 90px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.offer__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.offer__title {
    font-family: var(--font-primary);
    font-size: var(--fs-xl);
    color: var(--color-text-primary);
    text-align: center;
}

.offer__rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    margin: var(--space-md) 0;
}

.offer__score {
    color: var(--color-rating-gold);
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    font-family: var(--font-primary);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.offer__stars {
    display: flex;
    gap: 4px;
}

.star {
    color: var(--color-star);
    font-size: var(--fs-xl);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.star--half {
    opacity: 0.5;
}

.offer__bonus {
    background: var(--color-bg-accent);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    text-align: center;
    min-height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 212, 170, 0.3);
}

.offer__bonus p {
    color: var(--color-text-secondary);
    font-size: var(--fs-sm);
    line-height: 1.6;
    margin: 0;
}

.offer__button {
    background: linear-gradient(135deg, var(--color-accent-teal), var(--color-accent-cyan));
    color: #ffffff;
    padding: var(--space-md) var(--space-2xl);
    border-radius: var(--radius-xl);
    font-weight: var(--fw-bold);
    letter-spacing: 2px;
    transition: all var(--transition-base);
    box-shadow: 0 8px 24px rgba(0, 212, 170, 0.4), 0 0 20px rgba(0, 212, 170, 0.2);
    text-transform: uppercase;
    font-size: var(--fs-base);
    position: relative;
    overflow: hidden;
}

.offer__button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.offer__button:hover {
    background: linear-gradient(135deg, var(--color-accent-cyan), var(--color-accent-orange));
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 184, 212, 0.5), 0 0 30px rgba(255, 107, 53, 0.3);
}

.offer__button:hover::before {
    width: 300px;
    height: 300px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .offers {
        padding: var(--space-2xl) 0;
    }

    .offers__grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        padding: 0 var(--space-sm);
    }

    .offer__card {
        padding: var(--space-lg);
    }
}

/* ========================================
   REVIEWS SECTION - НОВИЙ ДИЗАЙН
   ======================================== */
.reviews {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-dark);
    position: relative;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 212, 170, 0.08) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(0, 184, 212, 0.08) 0%, transparent 30%);
    pointer-events: none;
}

.reviews__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    position: relative;
    z-index: 1;
}

.review__item {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    background: linear-gradient(135deg, var(--color-bg-card) 0%, rgba(39, 52, 58, 0.8) 100%);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    border: 1px solid rgba(0, 212, 170, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), inset 0 0 60px rgba(0, 212, 170, 0.05);
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.review__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-accent-teal), var(--color-accent-cyan), var(--color-accent-orange));
    opacity: 0.8;
}

.review__item::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-slow);
    pointer-events: none;
}

.review__item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 212, 170, 0.3), 0 0 50px rgba(0, 184, 212, 0.2), inset 0 0 80px rgba(0, 212, 170, 0.1);
    border-color: var(--color-accent-teal);
}

.review__item:hover::after {
    opacity: 1;
}

.review__item:hover::before {
    opacity: 1;
    box-shadow: 0 0 20px rgba(0, 212, 170, 0.6);
}

.review__header {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--color-border);
}

.review__logo-wrapper {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-border);
    transition: all var(--transition-base);
}

.review__item:hover .review__logo-wrapper {
    border-color: var(--color-accent-teal);
    transform: scale(1.05);
}

.review__logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.review__header-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.review__name {
    font-family: var(--font-primary);
    font-size: var(--fs-3xl);
    color: var(--color-text-primary);
    font-weight: var(--fw-bold);
    margin: 0;
}

.review__rating-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.25), rgba(0, 184, 212, 0.25));
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-xl);
    border: 2px solid var(--color-accent-teal);
}

.review__score-large {
    font-size: var(--fs-4xl);
    font-weight: var(--fw-extrabold);
    color: var(--color-rating-gold);
    font-family: var(--font-primary);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    line-height: 1;
}

.review__stars-small {
    display: flex;
    gap: 2px;
}

.review__stars-small .star {
    font-size: var(--fs-sm);
}

.review__body {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding: var(--space-md) 0;
}

.review__body p {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin: 0;
}

.review__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border);
    flex-wrap: wrap;
}

.review__promo {
    flex: 1;
    background: var(--color-bg-accent);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 212, 170, 0.3);
}

.review__promo-label {
    display: block;
    font-weight: var(--fw-bold);
    color: var(--color-accent-teal);
    margin-bottom: var(--space-xs);
    font-size: var(--fs-sm);
}

.review__promo p {
    color: var(--color-text-secondary);
    margin: 0;
    font-size: var(--fs-sm);
    line-height: 1.5;
}

.review__cta {
    background: linear-gradient(135deg, var(--color-accent-teal), var(--color-accent-cyan));
    color: #ffffff;
    padding: var(--space-lg) var(--space-2xl);
    border-radius: var(--radius-xl);
    font-weight: var(--fw-bold);
    font-size: var(--fs-lg);
    transition: all var(--transition-base);
    box-shadow: 0 8px 24px rgba(0, 212, 170, 0.4), 0 0 20px rgba(0, 212, 170, 0.2);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    position: relative;
    overflow: hidden;
}

.review__cta::after {
    content: '→';
    margin-left: var(--space-xs);
    transition: transform var(--transition-base);
}

.review__cta:hover {
    background: linear-gradient(135deg, var(--color-accent-cyan), var(--color-accent-orange));
    transform: translateX(6px) scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 184, 212, 0.5), 0 0 30px rgba(255, 107, 53, 0.3);
}

.review__cta:hover::after {
    transform: translateX(4px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .review__header {
        flex-direction: column;
        text-align: center;
    }

    .review__header-info {
        flex-direction: column;
        width: 100%;
    }

    .review__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .review__cta {
        justify-content: center;
    }
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-medium);
}

.faq__grid {
    display: grid;
    gap: var(--space-lg);
    max-width: 900px;
    margin: 0 auto;
}

.faq__item {
    background: linear-gradient(135deg, var(--color-bg-card) 0%, rgba(39, 52, 58, 0.6) 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    transition: all var(--transition-slow);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-left: 4px solid var(--color-accent-teal);
    position: relative;
    overflow: hidden;
}

.faq__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--color-accent-teal), var(--color-accent-cyan));
    transition: height var(--transition-slow);
}

.faq__item:hover {
    box-shadow: 0 16px 48px rgba(0, 212, 170, 0.3), 0 0 40px rgba(0, 212, 170, 0.1);
    border-color: var(--color-accent-teal);
    transform: translateY(-6px) translateX(8px);
    background: linear-gradient(135deg, var(--color-bg-card), var(--color-bg-hover));
}

.faq__item:hover::before {
    height: 100%;
}

.faq__question {
    font-family: var(--font-primary);
    font-size: var(--fs-xl);
    color: var(--color-text-primary);
    margin-bottom: var(--space-md);
}

.faq__answer {
    color: var(--color-text-secondary);
    line-height: 1.8;
}

/* ========================================
   FOOTER - ПОВНІСТЮ НОВИЙ ДИЗАЙН
   ======================================== */
.footer {
    background: linear-gradient(180deg, var(--color-bg-dark) 0%, #0a0f12 100%);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--color-accent-teal) 20%, 
        var(--color-accent-cyan) 50%, 
        var(--color-accent-orange) 80%, 
        transparent
    );
    background-size: 200% 100%;
    animation: gradientMove 4s ease infinite;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 212, 170, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 184, 212, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.footer__top {
    padding: var(--space-3xl) 0 var(--space-2xl);
    position: relative;
    z-index: 1;
}

.footer__main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: var(--space-3xl);
    align-items: start;
}

.footer__brand-section {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    padding-right: var(--space-xl);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-family: var(--font-primary);
    font-size: var(--fs-3xl);
    color: #ffffff;
    font-weight: var(--fw-extrabold);
    margin-bottom: var(--space-md);
    transition: transform var(--transition-base);
}

.footer__logo:hover {
    transform: scale(1.05);
}

.footer__logo img {
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 16px rgba(0, 212, 170, 0.3);
    transition: box-shadow var(--transition-base);
}

.footer__logo:hover img {
    box-shadow: 0 8px 24px rgba(0, 212, 170, 0.5);
}

.footer__tagline {
    color: var(--color-text-secondary);
    font-size: var(--fs-lg);
    line-height: 1.8;
    max-width: 350px;
    margin: 0;
    padding-left: var(--space-md);
    border-left: 3px solid var(--color-accent-teal);
}

.footer__links-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.footer__links-column {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.footer__column-title {
    color: #ffffff;
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    font-family: var(--font-primary);
    margin: 0 0 var(--space-md) 0;
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--color-accent-teal);
    display: inline-block;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer__column-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--color-accent-cyan);
}

.footer__links-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer__links-list a {
    color: var(--color-text-secondary);
    font-size: var(--fs-base);
    transition: all var(--transition-base);
    padding: var(--space-sm) var(--space-md);
    margin: var(--space-xs) 0;
    position: relative;
    border-radius: var(--radius-md);
    display: inline-block;
    width: fit-content;
}

.footer__links-list a::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--color-accent-teal);
    opacity: 0;
    transform: translateX(-15px);
    transition: all var(--transition-base);
    font-size: var(--fs-lg);
}

.footer__links-list a:hover {
    color: var(--color-accent-teal);
    background: rgba(0, 212, 170, 0.1);
    padding-left: var(--space-xl);
    transform: translateX(8px);
}

.footer__links-list a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer__badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    align-items: center;
}

.footer__badge {
    width: 80px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 212, 170, 0.2);
    padding: var(--space-sm);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.footer__badge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.footer__badge img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: all var(--transition-base);
    position: relative;
    z-index: 1;
}

.footer__badge:hover {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.2), rgba(0, 184, 212, 0.1));
    border-color: var(--color-accent-teal);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 212, 170, 0.3);
}

.footer__badge:hover::before {
    opacity: 1;
}

.footer__badge:hover img {
    opacity: 1;
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(0, 212, 170, 0.5));
}

.footer__age-badge {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-accent-teal), var(--color-accent-cyan), var(--color-accent-orange));
    background-size: 200% 200%;
    animation: gradientMove 3s ease infinite;
    border-radius: var(--radius-xl);
    color: #ffffff;
    font-weight: var(--fw-extrabold);
    font-size: var(--fs-2xl);
    font-family: var(--font-primary);
    border: 3px solid var(--color-accent-teal);
    box-shadow: 0 8px 24px rgba(0, 212, 170, 0.4), 0 0 20px rgba(0, 212, 170, 0.3);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.footer__age-badge::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: rotate 3s linear infinite;
}

.footer__age-badge:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 12px 32px rgba(0, 212, 170, 0.6), 0 0 30px rgba(0, 184, 212, 0.4);
}

.footer__bottom {
    padding: var(--space-xl) 0;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(0, 212, 170, 0.2);
    position: relative;
    z-index: 1;
}

.footer__copyright {
    text-align: center;
    color: var(--color-text-muted);
    font-size: var(--fs-base);
    margin: 0;
    padding: var(--space-md) 0;
    position: relative;
}

.footer__copyright::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent-teal), transparent);
}

/* Mobile Styles для Footer */
@media (max-width: 992px) {
    .footer__main {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .footer__links-section {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .footer__brand-section {
        text-align: center;
        align-items: center;
    }

    .footer__logo {
        justify-content: center;
    }

    .footer__tagline {
        text-align: center;
        max-width: 100%;
    }

    .footer__badges {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer__top {
        padding: var(--space-2xl) 0 var(--space-xl);
    }

    .footer__links-column {
        text-align: center;
    }

    .footer__column-title {
        width: 100%;
    }

    .footer__links-list {
        align-items: center;
    }

    .footer__links-list a {
        padding-left: 0;
    }

    .footer__links-list a::before {
        display: none;
    }

    .footer__links-list a:hover {
        padding-left: 0;
    }
}

/* ========================================
   POLICY PAGES
   ======================================== */
.policy-page {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: var(--space-3xl);
    background: var(--color-bg-dark);
}

.policy-card {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--color-bg-card);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--color-border);
    border-top: 4px solid var(--color-accent-teal);
}

.policy-card__title {
    font-size: var(--fs-5xl);
    font-family: var(--font-primary);
    color: var(--color-text-primary);
    text-align: center;
    margin-bottom: var(--space-md);
}

.policy-card__date {
    text-align: center;
    color: var(--color-text-muted);
    font-size: var(--fs-base);
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--color-border);
}

.policy-card__content {
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.policy-card__content h2 {
    font-size: var(--fs-2xl);
    color: var(--color-text-primary);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    font-family: var(--font-primary);
}

.policy-card__content h3 {
    font-size: var(--fs-xl);
    color: var(--color-text-primary);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
    font-family: var(--font-primary);
}

.policy-card__content p {
    margin-bottom: var(--space-md);
    color: var(--color-text-secondary);
}

.policy-card__content ul {
    list-style: disc;
    padding-left: var(--space-xl);
    margin-bottom: var(--space-md);
}

.policy-card__content li {
    margin-bottom: var(--space-xs);
    color: var(--color-text-secondary);
}

.policy-card__content strong {
    color: var(--color-text-primary);
    font-weight: var(--fw-semibold);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .policy-page {
        padding-top: 100px;
        padding-bottom: var(--space-2xl);
    }

    .policy-card {
        padding: var(--space-xl);
        border-radius: var(--radius-lg);
    }

    .policy-card__title {
        font-size: var(--fs-3xl);
    }

    .policy-card__content h2 {
        font-size: var(--fs-xl);
    }

    .policy-card__content h3 {
        font-size: var(--fs-lg);
    }

    .policy-card__content ul {
        padding-left: var(--space-lg);
    }
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    background: rgba(13, 20, 24, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 212, 170, 0.2);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 212, 170, 0.1);
    transition: all var(--transition-base);
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--color-accent-teal) 20%, 
        var(--color-accent-cyan) 50%, 
        var(--color-accent-orange) 80%, 
        transparent
    );
    opacity: 0.6;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-family: var(--font-primary);
    font-size: var(--fs-2xl);
    font-weight: var(--fw-extrabold);
    color: var(--color-text-primary);
    transition: all var(--transition-base);
    position: relative;
}

.nav__logo::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent-teal);
    transition: width var(--transition-base);
}

.nav__logo:hover::after {
    width: 100%;
}

.nav__logo img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 12px rgba(0, 212, 170, 0.3);
    transition: all var(--transition-base);
}

.nav__logo:hover img {
    box-shadow: 0 8px 20px rgba(0, 212, 170, 0.5);
    transform: scale(1.05);
}

.nav__menu {
    display: flex;
    gap: var(--space-lg);
}

.nav__link {
    font-family: var(--font-primary);
    font-size: var(--fs-base);
    color: var(--color-text-secondary);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    font-weight: 600;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: var(--fs-sm);
}

.nav__link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1), rgba(0, 184, 212, 0.1));
    border-radius: var(--radius-md);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent-teal), var(--color-accent-cyan));
    transform: translateX(-50%);
    transition: width var(--transition-base);
    border-radius: 2px;
}

.nav__link:hover {
    color: var(--color-accent-teal);
    transform: translateY(-2px);
}

.nav__link:hover::before {
    opacity: 1;
}

.nav__link:hover::after {
    width: 90%;
}

/* Mobile Navigation */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: var(--space-xs);
    border-radius: var(--radius-lg);
    transition: background var(--transition-base);
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--color-text-primary);
    transition: transform var(--transition-base);
    border-radius: 2px;
}

.nav__toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile Menu Active State */
.nav__toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav__toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
        padding: var(--space-xl);
        background: rgba(13, 20, 24, 0.98);
        border-bottom: 2px solid var(--color-border);
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
    }

    .nav__menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav__toggle {
        display: flex;
    }
}